home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / modellib / class_choose_algorithm.c next >
Encoding:
C/C++ Source or Header  |  1990-02-13  |  284 b   |  16 lines

  1. /* any model-specific testing or error handling should be given here */
  2. /* For simple use of the pacakge, just leave it as it is */
  3.  
  4. int
  5. choose_algorithm()
  6. {
  7.     extern int model,int_algorithm;
  8.     extern double *param;
  9.     
  10.     switch(model){
  11.         default:
  12.             return(int_algorithm);
  13.             break;
  14.     }
  15. }
  16.